home *** CD-ROM | disk | FTP | other *** search
- module oCachePlugin is cPlugin
- has
- release Editor:
- GetIO()
- do
- result := oIOCachePlugin;
- end;
- end;
- end;
-
- release Editor:
-
- object oIOCacheLabel is "Cache";
-
- object oIOCachePlugin is cIOPlugin
- with
- AboutDialog is cUIAboutPluginDialog
- with
- HelpURL is "Modules/Cache.htm";
- Label is oIOCacheLabel;
- Text is "Cache element, events and commands.";
- end;
- MenuItems is [
- cIOArgumentInMenuItem with Name is "Cache URL"; Value is oCacheURLArgumentIn; end,
- cIOArgumentInMenuItem with Name is "Cache Count"; Value is oCacheCountArgumentIn; end
- ];
- ToolLines is [
- cIOToolListLine
- with
- Expanded is true;
- Label is oIOCreateLabel;
- Lines is [
- cIOToolLine
- with
- Label is "Cache";
- Words is [
- oCacheElementCreator
- ];
- end
- ];
- end
- ];
- ElementLines is [
- cIOSeedListLine
- with
- Label is oIORuntimeLabel;
- Lines is [
- cIOSeedLine with IO is oIOCacheElement; end
- ];
- end
- ];
- EventLines is [
- cIOSeedListLine
- with
- Label is oIORuntimeLabel;
- Lines is [
- cIOSeedLine with IO is oIODiskCacheEvent; end,
- cIOSeedLine with IO is oIOMemoryCacheEvent; end
- ];
- end
- ];
- CommandLines is [
- cIOSeedListLine
- with
- Label is oIORuntimeLabel;
- Lines is [
- cIOSeedLine with IO is oIODiskCacheCommand; end,
- cIOSeedLine with IO is oIOMemoryCacheCommand; end,
- cIOSeedLine with IO is oIORedirectCommand; end
- ];
- end
- ];
- end;
-
- end;
-